package com.telcordia.cvas.rpn;

import org.junit.Before;
import org.junit.Test;

public class BinaryOperatorShould {
	private static final int RHS = 13;
	private static final int LHS = 42;
	private OperandStack operandStack;

	@Before
	public void init() {
		operandStack = new OperandStack();
		operandStack.push(LHS);
		operandStack.push(RHS);
	}
	
	@Test
	public void callExtensionPointWithCorrectOperands() {
	}
	
	@Test
	public void storeCalculatedResult() {
	}
}
